Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
32 lines (27 loc) · 1.19 KB

3.4.7 - Coroutine/Http/Client->addFile.md

File metadata and controls

32 lines (27 loc) · 1.19 KB

Coroutine\Http\Client->addFile

添加POST文件。

function Coroutine\Http\Client->addFile(string $path, string $name,
	string $mimeType = null, string $filename = null, int $offset = 0, int $length = 0)
  • $path 文件的路径,必选参数,不能为空文件或者不存在的文件
  • $name 表单的名称,必选参数,FILES参数中的key
  • $mimeType 文件的MIME格式,可选参数,底层会根据文件的扩展名自动推断
  • $filename 文件名称,可选参数,默认为basename($path)
  • $offset 上传文件的偏移量,可以指定从文件的中间部分开始传输数据。此特性可用于支持断点续传。
  • $length 发送数据的尺寸,默认为整个文件的尺寸

使用addFile会自动将POST的Content-Type将变更为form-dataaddFile底层基于sendfile,可支持异步发送超大文件。

addFile2.1.2以上版本可用

使用示例

$cli = new Swoole\Coroutine\Http\Client('httpbin.org', 80);
$cli->setHeaders([
    'Host' => "httpbin.org"
]);
$cli->set(['timeout' => -1]);
$cli->addFile(__FILE__, 'file1', 'text/plain');
$cli->post('/post', ['foo' => 'bar']);
echo $cli->body;
$cli->close();